home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 September (Japanese) / CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso / disc2 / patches / symantec / rtlinc.exe / CERROR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-06  |  403 b   |  24 lines

  1. /*
  2.  * cerror.h
  3.  *
  4.  * handles critical error interrupt under DOS and DOS16RM
  5.  *
  6.  * written by: G. Eric Engstrom
  7.  */
  8.  
  9. #ifndef __CERROR_H
  10. #define __CERROR_H    1
  11.  
  12. #if __cplusplus
  13. extern "C"
  14.   {
  15. #endif
  16. void __cdecl cerror_open(void);                /* installs critical error handler */
  17. void __cdecl cerror_close(void);            /* de installs critical error handler */
  18.  
  19. #if __cplusplus
  20.   }
  21. #endif
  22.  
  23. #endif
  24.